home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / public / Xprof / xprof / Imakefile < prev    next >
Makefile  |  1994-08-01  |  861b  |  27 lines

  1. /*==================================================================
  2.  *      File :          Imakefile
  3.  *      Package:        Xprof
  4.  *
  5.  *      Author :        Aloke Gupta.
  6.  *
  7.  *  (C) Copyright 1992, Aloke Gupta.
  8.  *==================================================================*/
  9.  
  10.         PROGRAMS = xprof
  11.          HEADERS = common.h profile.h
  12.             SRCS = main.c error.c event.c message.c parse.c request.c reply.c \
  13.                    table.c update.c gc.c
  14.             OBJS = main.o error.o event.o message.o parse.o request.o reply.o \
  15.            table.o update.o gc.o
  16.    SYS_LIBRARIES = -lX11 -lm
  17.          VERSION = 1.01
  18.  
  19. ComplexProgramTarget(xprof)
  20.  
  21. tar:
  22.     -rm -f xprof xprof_$(VERSION).tar.Z
  23.     cp Makefile Makefile.bak
  24.     tar chf xprof_$(VERSION).tar Imakefile Makefile $(HEADERS) $(SRCS) xprof.1;
  25.     mv Makefile.bak Makefile
  26.     compress xprof_$(VERSION).tar
  27.